68707f1e93c4e4c72a36fce4aea4cb42f322763c,community/src/java/org/neo4j/impl/shell/apps/Set.java,Set,exec,#AppCommandParser#Session#Output#,68

Before Change


        Object value = null;
        try
        {
            value = type.getConstructor( String.class ).newInstance(
                parser.arguments().get( 1 ) );
        }
        catch ( Exception e )
        {

After Change


        }

        String key = parser.arguments().get( 0 );
        ValueType valueType = getValueType( parser );
        Object value = parseValue( parser.arguments().get( 1 ), valueType );

        Node node = this.getCurrentNode( session );
        NodeOrRelationship thing = getNodeOrRelationship( node, parser );